projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c1a110
)
* lisp/emacs-lisp/cl-macs.el (list): Predefine predicate by hand
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 28 Mar 2024 16:27:54 +0000
(12:27 -0400)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Thu, 28 Mar 2024 16:27:54 +0000
(12:27 -0400)
lisp/emacs-lisp/cl-macs.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-macs.el
b/lisp/emacs-lisp/cl-macs.el
index 051cd992fc156117ce1c1e27eeed258312fd6e6e..a84ef4a34b237883b460106d785a6f0425e77ab6 100644
(file)
--- a/
lisp/emacs-lisp/cl-macs.el
+++ b/
lisp/emacs-lisp/cl-macs.el
@@
-3470,6
+3470,10
@@
Of course, we really can't know that for sure, so it's just a heuristic."
(keyword . keywordp) ;Would need `keyword-with-pos`.
(natnum . natnump) ;Subtype of fixnum & bignum.
(real . numberp) ;Not clear where it would fit.
+ ;; This one is redundant, but we keep it to silence a
+ ;; warning during the early bootstrap when `cl-seq.el' gets
+ ;; loaded before `cl-preloaded.el' is defined.
+ (list . listp)
))
(put type 'cl-deftype-satisfies pred))